home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 21 / AACD 21.iso / AACD / Utilities / Help / locale / help / english / sys / mount.doc < prev    next >
Encoding:
Text File  |  2000-10-06  |  2.0 KB  |  66 lines

  1. MOUNT
  2.  
  3. Makes a device connected to the system available.
  4.  
  5. Format
  6.  
  7. MOUNT {device} [FROM <filename>]
  8.  
  9. Template
  10.  
  11. DEVICE/M,FROM/K
  12.  
  13. Location
  14.  
  15. C:
  16.  
  17. MOUNT reads a device's configuration parameters from a file. It then uses the
  18. parameter information to mount the devices or make them available to the
  19. system. Multiple devices can be mounted with a single command. The {device}
  20. argument specifies the names of the devices to be mounted.
  21.  
  22. MOUNT can process either DOSDrivers mount files or a traditional
  23. multiple-entry MountList file, depending on which of the following three ways
  24. the arguments are specified:
  25.  
  26.   1. Given a device name, MOUNT tries to find a mount file of that name in
  27.      DEVS:DOSDrivers, then in SYS:Storage/DOSDrivers, and finally as an entry
  28.      in DEVS:MountList. This method is best if you have only one
  29.      configuration for that device on your system.
  30.   2. Given a path, MOUNT looks for a mount file in that location. Wildcards
  31.      may be used to mount multiple devices; as in MOUNT
  32.      DEVS:DOSDrivers/~(#?.info). Use this method when you have mount files
  33.      stored somewhere other than the DOSDrivers drawers or if you have
  34.      several mount file to process at once.
  35.   3. Given the FROM keyword and a path, MOUNT specifies the location of a
  36.      MountList file to process. Use this method if you have a MountList
  37.      stored somewhere other than DEVS: or if you have several MountLists.
  38.  
  39. Note:
  40.  
  41. A mount file's icon Tool Types, if any, override parameters of the same name
  42. in the mount file itself.
  43.  
  44. Example 1:
  45.  
  46. 1> MOUNT PIPE:
  47.  
  48. This looks for the mount file DEVS:DOSDrivers/PIPE and processes it if found.
  49. If DEVS:DOSDrivers/PIPE does not exist, MOUNT looks for
  50. SYS:Storage/DOSDrivers/PIPE. If this also fails, then MOUNT looks for a PIPE:
  51. entry in DEVS:MountList.
  52.  
  53. Example 2:
  54.  
  55. 1> MOUNT Work:Devices/PIPE
  56.  
  57. This looks for a PIPE mount file in Work:Devices.
  58.  
  59. Example 3:
  60.  
  61. 1> MOUNT PIPE: FROM SYS:Mydevs/MountList
  62.  
  63. This scans for a PIPE entry in SYS:Mydevs/MountList.
  64.  
  65. See Appendix B for further information on MountLists.
  66.